November 27, 2022

Maven Unicorn Challenge

Full challenge details - Introducing the Maven Unicorn Challenge.
Link to GitHub repository, including data and final output.

About the dataset
  • A unicorn company is a private company with a valuation of more than $1 billion, and today there are over 1,000 unicorn companies around the world!
  • This dataset contains a csv table with 1,074 records, one for each company.
  • Each record contains details on the company's current valuation, total funding, country of origin, industry, select investors, and the years they were founded and became unicorns.

  • Import data and data cleaning
  • Import the csv data file using Power BI Desktop, and choose Transform data to open the Query Editor.
  • Valuation column: create a new column from example and replace ‘B’ with 000,000,000.
  • Funding column: split text by delimiter (digit to non-digit); replace ‘B’ with 000,000,000 and ‘M’ with 000,000; join the split columns together.
  • Change the Valuation and Funding columns to currency data type; there are some errors as some funding data is ‘Unknown’.
  • Duplicate the query and rename it as Investors. This is to split out the investors individually.
  • Split the investor column by delimiter ‘, ‘ - note the space after the comma; select the new investor columns and unpivot other columns; group by the new investor column with count row.
  • Spend some time to review and rename similar investors (Ex: Sequoia Capital China and Sequoia Group are replaced with Sequoia; Accel Partners and Accel India are replaced with Accel); To save time, only replace those with more than 10 counts.

  • Report layout planning
  • Change the page layout to 1920*1080 for more space.
  • Map down the sections and their size before creating visualisations.
  • Tips: Choose the theme and carefully format one visualisation and duplicate it for other visualisations.


  • Visualisation design
    Valuation by industry
    Visualisation - Stack bar chart
    Y-axis: Industry; X-axis: Sum of Valuation
    Filter: top 5 industries by Sum of Valuation
    Insight: The datas act as an empirical evidence that technology-related unicorns create the most value, hence the top 4 categories are all in the tech field (Fintech, Software, E-commerce, AI).

    Funding by industry
    Visualisation - Stack bar chart
    Y-axis: Industry; X-axis: Sum of Funding
    Filter: top 5 industries by Sum of Funding
    Insight: Given the valuation of tech unicorns, there is no surprise that they also receive the most funding. Interestingly, E-Commerce and Software industries receive similar funding for unicorns but the valuation of Software unicorns is almost 40% higher than those of E-Commerce. Venture capitalists and Angel investors may take these rates of return into account when they assess future funding application. E-Commerce start-ups may find it harder to compete against Software start-ups for seed money.

    Unicorns joined by year
    Visualisation - Stack bar chart
    Y-axis: Count of Company; X-axis: Dated Joined - Year
    Insight: When the COVID 19 pandemic hit, organisations around the world looked for solutions to help them operated with employees in isolation and social distancing orders. This created a massive demand in connectivity and health related start-ups. As a result, a huge number of unicorns are born during this period to meet the unfilled demand, boosting digital transformation projects.

    Investors by funded companies
    Visualisation - Horizontal bar chart
    Y-axis: Investor; X-axis: Sum of row counts
    Filter: top 5 investors by Sum of row counts
    Insight: When seeking for funding, start-ups may want to look at these investors first. Given the number of unicorns they are involved with, they can provide expertise in management, marketing, manufacturing, distribution in addition to funding. These are quite valuable for start-ups as they often lack the relevant capabilities, leading to early failures.

    Valuation over funding ratio
    Visualisation - Card
    Value: New Measure
    Valuation/Funding = SUM(
    	Unicorn_Companies[Valuation]) / 
    	SUM(Unicorn_Companies[Funding])
    Insight: This is a simple average figure but start-up founders can use it as a benchmark. If they fall too far behind, investors may considering to withdraw funding.

    Time taken to reach Unicorn status
    Visualisation - Card
    Value: New Measure
    Years to Unicorn = AVERAGEA(
    	Unicorn_Companies[Year Joined]) - 
    	AVERAGEA(Unicorn_Companies[Year Founded])>
    Insight: Given the time required to reach unicorn status, start-up founders need to consider how they can gain access to finance in the early years, when cashflow is often in then negative territories. Venture capitalists rarely pour in funding untill the start-ups show promising returns. Potention alternatives are government grants, borrowings from family and friends, remortgaging the founders' houses.

    Companies by city
    Visualisation - Stack bar chart
    Y-axis: City; X-axis: Count of Company
    Filter: top 10 cities by Count of Company
    Insight: The USA provides the best environment for start-ups to thrive (strong legal system, establised investment environment, educated workforce). China is a good alternative due to the size of its domestic market.

    Valuation by Continent and Country
    Visualisation - Treemap
    Category: Continent; Details: Country; Value: Valuation
    Insight: China is set to overtale the USA as the biggest economy in the world, according to some economists. However, the total size of its unicorn start-ups are dawrfed by the USA, which is a key indicator for creating values in the long-term. Hence, investing in the US economy still looks like a safer bet.